home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cvstrac_detect.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  96 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(15722);
  8.  script_version("$Revision: 1.1 $");
  9.  
  10.  name["english"] = "CVSTrac Detection";
  11.  
  12.  script_name(english:name["english"]);
  13.  
  14.  desc["english"] = "
  15. The remote host is running CVSTrac, a Web-Based Bug and Patch-Set 
  16. tracking system for CVS.
  17.  
  18. See http://www.cvstrac.org for more information.
  19. Risk factor: None";
  20.  
  21.  script_description(english:desc["english"]);
  22.  
  23.  summary["english"] = "Detects the presence of CVSTrac";
  24.  
  25.  script_summary(english:summary["english"]);
  26.  
  27.  script_category(ACT_GATHER_INFO);
  28.  
  29.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  30.  family["english"] = "CGI abuses";
  31.  family["francais"] = "Abus de CGI";
  32.  script_family(english:family["english"], francais:family["francais"]);
  33.  script_dependencie("http_version.nasl");
  34.  script_require_ports("Services/www", 80);
  35.  exit(0);
  36. }
  37.  
  38. #
  39. # The script code starts here
  40. #
  41.  
  42.  
  43. include("http_func.inc");
  44. include("http_keepalive.inc");
  45.  
  46. port = get_http_port(default:80);
  47.  
  48. if(!get_port_state(port))exit(0);
  49. if(!can_host_php(port:port))exit(0);
  50.  
  51. dirs = "";
  52.  
  53.  
  54. function check(loc)
  55. {
  56.  req = http_get(item:string(loc, "/index"), port:port);
  57.  
  58.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  59.  if( r == NULL )exit(0);
  60.  line = egrep(pattern:"<a href=.about.>CVSTrac version .*", string:r);
  61.  if ( line ) 
  62.  {
  63.     version_str = chomp(line);
  64.      version = ereg_replace(pattern:"<a href=.about.>CVSTrac version ([0-9.]*)</a>", string:version_str, replace:"\1");
  65.     if ( version == version_str ) version = "unknown";
  66.     if ( loc == "" ) loc = "/";
  67.     set_kb_item(name:"www/" + port + "/cvstrac",
  68.             value:version + " under " + loc );
  69.     
  70.     dirs += " - " + loc + '\n';
  71.  }
  72. }
  73.  
  74. #foreach dir (cgi_dirs())
  75. foreach dir (make_list("/cvstrac"))
  76. {
  77.  check(loc:dir);
  78. }
  79.  
  80. if ( dirs ) 
  81. {
  82. report = "
  83. The remote host is running CVSTrac, a Web-Based Bug and Patch-Set 
  84. tracking system for CVS.
  85.  
  86. See http://www.cvstrac.org for more information.
  87.  
  88. CVSTrac is installed under the following location(s) :
  89.  
  90. " + dirs + "
  91.  
  92. Risk Factor : None";
  93.  security_note(port:port, data:report);
  94. }
  95.  
  96.